home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 001-025 / scopedisk8 / menubuild / make < prev    next >
Text File  |  1995-03-18  |  430b  |  19 lines

  1. .Key file,op1,op2
  2.    if exists <file>.c
  3. echo "Compiling <file>.c"
  4. lc1 <op1> <op2> -oram:<file>.q -iinc: -i:include/ -i:include/lattice/ <file>
  5.       if "<op1>" EQ "-d"
  6. lc2 -v -d -o<file>.o  ram:<file>.q
  7.       else
  8.          if "<op2>" EQ "-d"
  9. lc2 -v -d -o<file>.o  ram:<file>.q
  10.          else
  11. lc2 -v -o<file>.o  ram:<file>.q
  12.          endif
  13.       endif
  14.    else
  15. echo -n Could not find
  16. echo -2 <file>.c
  17. echo -d ...job aborted
  18.    endif
  19.